home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-03
/
fglqbx10.zip
/
07-10.BAS
< prev
next >
Wrap
BASIC Source File
|
1991-06-06
|
361b
|
25 lines
REM $INCLUDE: 'fastgraf.bi'
DEFINT A-Z
OldMode = FGgetmode
FGsetmode 16
FGinitw
FGsetworld 0.0, 6.39, 0.0, 3.49
FGsetsizew 0.21
FGsetcolor 7
Half# = FGswlength(" Hello there. ",14) * 0.5
FGrectw 3.2-Half#, 3.2+Half#, 1.6, 1.9
FGsetcolor 10
FGmovew 3.2, 1.65
FGswtext "Hello there.", 12, 0
FGwaitkey
FGsetmode OldMode
FGreset
END